home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / amiexpress / source / ae / code / acp3.00 / includes / acpcycle_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-18  |  1.1 KB  |  66 lines

  1. /* Prototypes for functions defined in
  2. AcpCycle.c
  3.  */
  4.  
  5.  
  6. #ifndef __NOPROTO
  7.  
  8. #ifndef __PROTO
  9. #define __PROTO(a) a
  10. #endif
  11.  
  12. #else
  13. #ifndef __PROTO
  14. #define __PROTO(a) ()
  15.  
  16. #endif
  17. #endif
  18.  
  19.  
  20. extern char LastUsers[][];
  21.  
  22. extern char LastUploads[][];
  23.  
  24. extern char LastDownloads[][];
  25.  
  26. extern struct NodeUsers NdUser[];
  27.  
  28. extern struct NodeUsers NdUploads[];
  29.  
  30. extern struct NodeUsers NdDownloads[];
  31.  
  32. extern char LastBlank[];
  33.  
  34. void RegLastUser __PROTO((char *, int ));
  35.  
  36. void RegNodeUser __PROTO((char *, int ));
  37.  
  38. void ShowLastUser __PROTO((struct Window *));
  39.  
  40. void ShowNdLastUser __PROTO((struct Window *, int ));
  41.  
  42. void RegLastUploads __PROTO((char *, int ));
  43.  
  44. void RegNodeUploads __PROTO((char *, int ));
  45.  
  46. void ShowLastUploads __PROTO((struct Window *));
  47.  
  48. void ShowNdLastUploads __PROTO((struct Window *, int ));
  49.  
  50. void RegLastDownloads __PROTO((char *, int ));
  51.  
  52. void RegNodeDownloads __PROTO((char *, int ));
  53.  
  54. void ShowLastDownloads __PROTO((struct Window *));
  55.  
  56. void ShowNdLastDownloads __PROTO((struct Window *, int ));
  57.  
  58. void InitCycles __PROTO((void));
  59.  
  60. void InitNdCycles __PROTO((void));
  61.  
  62. extern struct IntuiText t;
  63.  
  64. void PrintMyText __PROTO((struct RastPort *, char *, int , int ));
  65.  
  66.